'Declaration
<NotNullAttribute()> Public Overloads Function GetNode(Of T As Class)( _ ByVal endpointDescriptor As UAEndpointDescriptor, _ ByVal nodeDescriptor As UANodeDescriptor _ ) As T
'Usage
Dim instance As UAModelClient Dim endpointDescriptor As UAEndpointDescriptor Dim nodeDescriptor As UANodeDescriptor Dim value As T value = instance.GetNode(Of T)(endpointDescriptor, nodeDescriptor)
[NotNull()] public T GetNode<T>( UAEndpointDescriptor endpointDescriptor, UANodeDescriptor nodeDescriptor ) where T: class
[NotNull()] public: T^ GetNodegeneric<typename T> ( UAEndpointDescriptor^ endpointDescriptor, UANodeDescriptor^ nodeDescriptor ) where T: ref class
Parameters
- endpointDescriptor
- Endpoint descriptor. Identifies the OPC-UA server.
- nodeDescriptor
- Node descriptor. Identifies the node in OPC server's address space.
Type Parameters
- T
- The type of node to be obtained.
Return Value
Returns the specified node obtained from the model client.